home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software Vault: The Gold Collection
/
Software Vault - The Gold Collection (American Databankers) (1993).ISO
/
cdr15
/
ixe130.zip
/
BUILD.BAT
next >
Wrap
DOS Batch File
|
1993-05-10
|
1KB
|
58 lines
@echo off
rem build.bat
if i%1 == P5 goto buildP5
if i%1 == i586 goto build586
if i%1 == i486 goto build486
if i%1 == i386 goto build386
if i%1 == i286 goto build286
if i%1 == i186 goto build186
if i%1 == i086 goto build086
if i%1 == i088 goto build088
if i%1 == iTRS80 goto buildTRS80
:syntax
echo usage is: build [cpu]
echo.
echo [cpu] processor type : 088,086,186,286,386,486,586,P5,TRS80
echo.
echo example:
echo.
echo build 386
echo.
goto end
:buildTRS80
echo "You've got to be kidding?!"
goto end
:build088
:build086
bcc -ml -c -B ixeblit.c
bcc -ml -Di086 -1- ixetest.c ixeblit.obj
ixe sphere*.pan -i16
goto end
:build186
bcc -ml -c -B ixeblit.c
bcc -ml -Di186 -1 ixetest.c ixeblit.obj
ixe sphere*.pan -i16
goto end
:build286
bcc -ml -c -B ixeblit.c
bcc -ml -Di286 -2 ixetest.c ixeblit.obj
ixe sphere*.pan -i16
goto end
:buildP5
:build586
:build486
:build386
bcc -ml -c -B ixeblit.c
bcc -ml -Di386 -3 ixetest.c ixeblit.obj
ixe sphere*.pan -i32
:end